From 26c1639eb6a82de2bbf86af602569b83e90daeac Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 29 Jun 1993 22:46:26 +0000 Subject: [PATCH] * keyboard.c (read_char): Don't do idle autosaves if we're not interactive. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index 4271f6c9df8..52e283ab789 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1445,7 +1445,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) /* Slow down auto saves logarithmically in size of current buffer, and garbage collect while we're at it. */ - if (NILP (c)) + if (INTERACTIVE && NILP (c)) { int delay_level, buffer_size; -- 2.30.2